Apart from some edge-cases, it is generally advisable to use the strict comparison === instead of ==.
The loose comparison such as == or != might produce some weird results
for some values, unless you explicitly want to have this behavior here, better
use the strict alternative.